string to int c#

236

how to parse a string to an integer c# -

    string str = "10s";
 
    int x = Convert.ToInt32(str);
	Console.WriteLine(x);

c# how to convert string to int -

string str = "100";
int x = Int32.Parse(str); // or int.Parse();
Console.WriteLine(x);

Comments

Submit
0 Comments